ant-design/.eslintrc.js

69 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-03-31 17:06:21 +08:00
const eslintrc = {
2019-05-07 14:57:32 +08:00
extends: ['airbnb', 'prettier', 'plugin:jest/recommended'],
2016-03-31 17:06:21 +08:00
env: {
browser: true,
node: true,
jasmine: true,
2016-03-31 17:06:21 +08:00
jest: true,
es6: true,
},
parser: 'babel-eslint',
2019-05-07 14:57:32 +08:00
plugins: ['markdown', 'react', 'babel', 'jest'],
2016-03-31 17:06:21 +08:00
rules: {
'react/jsx-one-expression-per-line': 0,
2018-11-28 15:00:03 +08:00
'react/prop-types': 0,
'react/forbid-prop-types': 0,
2018-12-07 16:17:45 +08:00
'react/jsx-indent': 0,
'react/jsx-wrap-multilines': ['error', { declaration: false, assignment: false }],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [
'site/**',
'tests/**',
'scripts/**',
'**/*.test.js',
'**/__tests__/*',
'*.config.js',
'**/*.md',
],
},
],
2016-09-10 11:18:07 +08:00
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.md'] }],
'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-11-07 15:55:14 +08:00
'comma-dangle': ['error', 'always-multiline'],
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,
2018-06-27 15:55:04 +08:00
'react/no-access-state-in-setstate': 0,
'react/destructuring-assignment': 0,
2016-03-31 17:46:35 +08:00
'react/no-multi-comp': 0,
2016-08-23 21:00:35 +08:00
'jsx-a11y/href-no-hash': 0,
2018-11-28 15:00:03 +08:00
'prefer-destructuring': 0, // TODO: remove later
'max-len': 0, // TODO: remove later
'consistent-return': 0, // TODO: remove later
'no-return-assign': 0, // TODO: remove later
'no-param-reassign': 0, // TODO: remove later
'import/no-extraneous-dependencies': 0,
2016-03-31 17:06:21 +08:00
});
}
module.exports = eslintrc;