ant-design/.eslintrc.js

76 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-03-31 17:06:21 +08:00
const eslintrc = {
extends: ['eslint-config-airbnb'],
env: {
browser: true,
node: true,
jasmine: true,
2016-03-31 17:06:21 +08:00
jest: true,
es6: true,
},
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 6,
ecmaFeatures: {
jsx: true,
experimentalObjectRestSpread: true,
},
},
plugins: [
'markdown',
'react',
'babel',
],
rules: {
'func-names': 0,
'arrow-body-style': 0,
'react/sort-comp': 0,
'react/prop-types': 0,
'react/jsx-first-prop-new-line': 0,
'react/jsx-one-expression-per-line': 0,
'react/forbid-prop-types': 0,
2016-09-10 11:18:07 +08:00
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.md'] }],
2016-12-08 11:08:13 +08:00
'import/extensions': 0,
'import/no-unresolved': 0,
2016-08-23 21:00:35 +08:00
'import/no-extraneous-dependencies': 0,
2017-10-09 13:23:20 +08:00
'prefer-destructuring': 0,
2016-03-31 17:06:21 +08:00
'no-param-reassign': 0,
'no-return-assign': 0,
'max-len': 0,
'consistent-return': 0,
2016-07-09 16:15:08 +08:00
'no-redeclare': 0,
2016-08-28 17:52:14 +08:00
'react/require-extension': 0,
'jsx-a11y/no-static-element-interactions': 0,
'jsx-a11y/anchor-has-content': 0,
2017-10-09 13:23:20 +08:00
'jsx-a11y/click-events-have-key-events': 0,
'jsx-a11y/anchor-is-valid': 0,
2016-09-29 14:22:27 +08:00
'react/no-danger': 0,
2016-11-07 15:55:14 +08:00
'comma-dangle': ['error', 'always-multiline'],
2017-10-09 13:23:20 +08:00
'function-paren-newline': 0,
'object-curly-newline': 0,
'no-restricted-globals': 0,
2016-09-10 11:18:07 +08:00
},
2016-03-31 17:06:21 +08:00
};
2016-04-21 20:32:36 +08:00
if (process.env.RUN_ENV === 'DEMO') {
2016-03-31 17:06:21 +08:00
eslintrc.globals = {
React: true,
ReactDOM: true,
mountNode: true,
};
Object.assign(eslintrc.rules, {
2017-10-09 13:23:20 +08:00
indent: 0,
2016-03-31 17:06:21 +08:00
'no-console': 0,
'no-plusplus': 0,
2016-03-31 17:06:21 +08:00
'eol-last': 0,
2018-04-11 15:15:24 +08:00
'no-script-url': 0,
2016-03-31 17:06:21 +08:00
'prefer-rest-params': 0,
2016-03-31 17:46:35 +08:00
'react/no-multi-comp': 0,
'react/prefer-stateless-function': 0,
2016-08-23 21:00:35 +08:00
'jsx-a11y/href-no-hash': 0,
'import/newline-after-import': 0,
2016-03-31 17:06:21 +08:00
});
}
module.exports = eslintrc;