forked from storybookjs/addon-postcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
50 lines (49 loc) · 1.21 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const error = 2;
const warn = 1; // eslint-disable-line no-unused-vars
const off = 0;
module.exports = {
root: true,
extends: ['airbnb', 'plugin:jest/recommended', 'prettier', 'prettier/react'],
parser: 'babel-eslint',
env: {
es6: true,
node: true,
'jest/globals': true,
},
overrides: [
{
files: ['./examples/**'],
env: {
browser: true,
},
},
{
files: ['*.ts', '*.tsx'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'prettier/@typescript-eslint',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
},
rules: {
'import/extensions': off, // [warn, { ts: 'never', tsx: 'never' }],
'import/no-default-export': error,
'import/prefer-default-export': off,
'react/jsx-filename-extension': off,
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
ts: {
directory: './{packages,examples}/*/tsconfig.json',
},
},
},
},
],
};