Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "extends": [
- "eslint:recommended",
- "plugin:import/errors",
- "plugin:import/warnings"
- ],
- # 设置ESLint的解析器,默认使用Espree。
- "parser": "babel-eslint",
- # 使用第三方插件,可以省略eslint-plugin-前缀,本地安装的ESLint不仅可以使用本地安装的插件还可以使用全局安装的插件。
- "plugins": [
- "react"
- ],
- # 设置解析器选项
- "parserOptions": {
- # 指定想要使用的ECMAScript版本
- "ecmaVersion": 6,
- # 默认是script,如果代码是ECMAScript模块的话使用module
- "sourceType": "module",
- # 想使用的额外的语言特性。
- "ecmaFeatures": {
- "jsx": true
- }
- },
- # 定义全局变量
- "env": {
- "es6": true,
- "browser": true,
- "node": true,
- "jquery": true,
- "mocha": true
- },
- # 规则,0/off:关闭规则; 1/warn:开启规则,使用警告级别的错误,不会导致程序退出; 2/error: 开启规则,使用错误级别的错误,当触发的时候,程序会退出。
- "rules": {
- "quotes": 0,
- "no-console": 1,
- "no-debugger": 1,
- "no-var": 1,
- "import/named": 0,
- "import/no-named-as-default": 0,
- "semi": [1, "always"],
- "no-trailing-spaces": 0,
- "eol-last": 0,
- "no-underscore-dangle": 0,
- "no-alert": 0,
- "no-lone-blocks": 0,
- "jsx-quotes": 1,
- "react/display-name": [ 1, {"ignoreTranspilerName": false }],
- "react/forbid-prop-types": [1, {"forbid": ["any"]}],
- "react/jsx-boolean-value": 0,
- "react/jsx-closing-bracket-location": 0,
- "react/jsx-curly-spacing": 1,
- "react/jsx-indent-props": 0,
- "react/jsx-key": 1,
- "react/jsx-max-props-per-line": 0,
- "react/jsx-no-bind": 0,
- "react/jsx-no-duplicate-props": 1,
- "react/jsx-no-literals": 0,
- "react/jsx-no-undef": 1,
- "react/jsx-pascal-case": 1,
- "react/jsx-sort-prop-types": 0,
- "react/jsx-sort-props": 0,
- "react/jsx-uses-react": 1,
- "react/jsx-uses-vars": 1,
- "react/no-danger": 1,
- "react/no-did-mount-set-state": 1,
- "react/no-did-update-set-state": 1,
- "react/no-direct-mutation-state": 1,
- "react/no-multi-comp": 1,
- "react/no-set-state": 0,
- "react/no-unknown-property": 1,
- "react/prefer-es6-class": 1,
- "react/prop-types": 1,
- "react/react-in-jsx-scope": 1,
- "react/require-extension": 1,
- "react/self-closing-comp": 1,
- "react/sort-comp": 1,
- "react/wrap-multilines": 1
- },
- "globals": {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement