.vscode/settings.json in skippy-0.2.0.a vs .vscode/settings.json in skippy-0.3.0.a

- old
+ new

@@ -1,5 +1,44 @@ // Place your settings in this file to overwrite default and user settings. { - "editor.wrappingColumn": 80, - "files.insertFinalNewline": true + "editor.wordWrap": "off", + "editor.rulers": [ + 80 + ], + + + "files.insertFinalNewline": true, + + "ruby.lint": { + "rubocop": true + }, + + "[markdown]": { + "editor.wordWrap": "bounded", + "editor.wordWrapColumn": 80 + }, + + "todohighlight.keywordsPattern": "(TODO|FIXME|KLUDGE)(\\([^)]+\\))?:", + "todohighlight.include": [ + "**/*.rb", + "**/*.md", + "**/*.html", + "**/*.js", + "**/*.css" + ], + "todohighlight.exclude": [ + "**/node_modules/**", + "**/bower_components/**", + "**/dist/**", + "**/build/**", + "**/.vscode/**", + "**/.github/**", + "**/_output/**", + "**/*.min.*", + "**/*.map", + "**/.next/**", + "fixtures/**", + "pkg/**", + "tmp/**", + "vendor/**", + ] }