Skip to content

Commit

Permalink
added vcode user settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ebreton committed Jan 27, 2018
1 parent b988009 commit 8e631f0
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Manu
Copyright (c) 2018 https://github.com/ebreton

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pybootstrap

basic scaffolding for python command line interfaces (CLI)
62 changes: 62 additions & 0 deletions etc/vcode.settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Placez vos paramètres dans ce fichier pour remplacer les paramètres par défaut
{
"window.zoomLevel": 0,

"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderWhitespace": "boundary",
"editor.snippetSuggestions": "top",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120,
"editor.rulers": [
100,
120
],

"files.autoSave": "onWindowChange",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/*.pyc": true
},
"files.insertFinalNewline": true,

"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.autofetch": true,

"emmet.includeLanguages": {"vue-html": "html"},
"emmet.excludeLanguages": [],

"restructuredtext.builtDocumentationPath": "${workspaceRoot}/docs/_build/html",
"restructuredtext.confPath": "${workspaceRoot}/docs",
"restructuredtext.linter.run": "onSave",

"python.venvPath": "/Users/emb/Documents/virtualenvs, /Users/emb/.virtualenvs",
"python.pythonPath": "",

"python.unitTest.pyTestEnabled": true,
"python.formatting.autopep8Args": [
"--max-line-length 120"
],
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=120"
],

"sublimeTextKeymap.promptV3Features": true,

"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,

"markdownlint.config": {
"MD003": false,
"MD007": false,
"MD013": false
}
}

0 comments on commit 8e631f0

Please sign in to comment.