-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
42 lines (42 loc) · 1.39 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
module.exports = {
// Specifies the ESLint parser
parser: '@typescript-eslint/parser',
extends: [
// Uses the recommended rules from the @typescript-eslint/eslint-plugin
'plugin:@typescript-eslint/recommended',
// Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
'prettier',
'plugin:lit/recommended',
],
parserOptions: {
// Allows for the parsing of modern ECMAScript features
ecmaVersion: 2018,
// Allows for the use of imports
sourceType: 'module',
},
rules: {
'@typescript-eslint/explicit-function-return-type': 0,
'simple-import-sort/imports': 'error',
'sort-imports': 'off',
'import/order': 'off',
'prettier/prettier': [
'error',
{
trailingComma: 'es5',
semi: true,
singleQuote: true,
printWidth: 120,
},
],
indent: ['off', 2],
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/camelcase': 0,
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['off'],
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'lit/no-legacy-template-syntax': 'error',
'lit/no-template-arrow': 'off',
},
plugins: ['simple-import-sort', '@typescript-eslint', 'prettier', 'lit'],
};