@@ -18,7 +18,7 @@ module.exports = {
1818 'plugin:react/recommended' ,
1919 'plugin:@typescript-eslint/recommended' ,
2020 'plugin:prettier/recommended' ,
21- " plugin:unicorn/recommended" ,
21+ ' plugin:unicorn/recommended' ,
2222 ] ,
2323 parser : '@typescript-eslint/parser' ,
2424 parserOptions : {
@@ -36,32 +36,30 @@ module.exports = {
3636 } ,
3737 } ,
3838 rules : {
39- " unicorn/filename-case" : " off" ,
40- " unicorn/no-array-for-each" : " off" ,
41- " unicorn/no-null" : " off" ,
42- " unicorn/prefer-dom-node-append" : " off" ,
43- " unicorn/prefer-export-from" : " off" ,
44- " unicorn/prefer-query-selector" : " off" ,
45- " unicorn/prevent-abbreviations" : " off" ,
39+ ' unicorn/filename-case' : ' off' ,
40+ ' unicorn/no-array-for-each' : ' off' ,
41+ ' unicorn/no-null' : ' off' ,
42+ ' unicorn/prefer-dom-node-append' : ' off' ,
43+ ' unicorn/prefer-export-from' : ' off' ,
44+ ' unicorn/prefer-query-selector' : ' off' ,
45+ ' unicorn/prevent-abbreviations' : ' off' ,
4646 } ,
4747 overrides : [
4848 {
49- "files" : [
50- "packages/docs/build/**"
51- ] ,
52- "env" : {
53- "browser" : false ,
54- "node" : true
49+ files : [ 'packages/docs/build/**' ] ,
50+ env : {
51+ browser : false ,
52+ node : true ,
5553 } ,
56- "parserOptions" : {
57- "sourceType" : "script"
54+ parserOptions : {
55+ sourceType : 'script' ,
56+ } ,
57+ rules : {
58+ '@typescript-eslint/no-var-requires' : 'off' ,
59+ 'no-console' : 'off' ,
60+ 'unicorn/prefer-module' : 'off' ,
61+ 'unicorn/prefer-top-level-await' : 'off' ,
5862 } ,
59- "rules" : {
60- "@typescript-eslint/no-var-requires" : "off" ,
61- "no-console" : "off" ,
62- "unicorn/prefer-module" : "off" ,
63- "unicorn/prefer-top-level-await" : "off"
64- }
6563 } ,
66- ]
64+ ] ,
6765}
0 commit comments