UNPKG

note-down

Version:
24 lines (23 loc) 854 B
{ // http://eslint.org/docs/user-guide/configuring.html // https://gist.github.com/cletusw/e01a85e399ab563b1236 "parserOptions": { "sourceType": "module", // https://github.com/AtomLinter/linter-eslint/issues/462#issuecomment-190770417 "ecmaFeatures": {} // http://eslint.org/docs/user-guide/migrating-to-2.0.0#language-options }, "env": { "browser": false, "es6": true, "node": true }, "extends": "eslint:recommended", "rules": { "indent": [ "error", 4 ], "linebreak-style": [ "error", "unix" ], "no-console": "off", "no-debugger": "off", "no-shadow": "off", "quotes": "off", // http://eslint.org/docs/rules/quotes "semi": [ "error", "always" ] } }