UNPKG

mew-time

Version:
61 lines (55 loc) 1.72 kB
{ "root": true, "parser": "babel-eslint", "extends": "airbnb", "plugins": ["react"], "env": { "browser": true, "commonjs": true, "es6": true, "node": true, "jasmine": true }, "parserOptions": { "ecmaFeatures": { "experimentalObjectRestSpread": true, "jsx": true } }, "globals": { "APP": true }, "rules": { "max-len": [2, 250], "linebreak-style": "off", "comma-dangle": ["error", "never"], "indent": ["error", 4, { "SwitchCase": 1 }], "newline-per-chained-call": ["error", { "ignoreChainWithDepth": 6 }], "func-names": 0, "new-cap": ["error", { "newIsCapExceptions": ["naver_id_login"] }], "quotes": ["error", "double"], "quote-props": 0, "dot-notation": 0, "spaced-comment": 0, "no-param-reassign": 0, "no-unused-vars": 0, "no-underscore-dangle": 0, "no-console": [0, {"allow": ["warn", "error"]}], "no-var": 2, "no-bitwise": 0, "prefer-const": 2, "arrow-body-style": 0, "arrow-parens": ["error", "as-needed"], "class-methods-use-this": 0, "import/first": ["off"], "import/no-unresolved": 0, "import/extensions": [2, { "js": "never", "jsx": "never" }], "import/no-extraneous-dependencies": 0, "import/prefer-default-export": 0, "react/jsx-indent": [2, 4], "react/jsx-indent-props": ["error", 4], "react/no-danger": 0, "react/prefer-stateless-function": 0, "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }] } }