File tree Expand file tree Collapse file tree 2 files changed +64
-64
lines changed
Expand file tree Collapse file tree 2 files changed +64
-64
lines changed Original file line number Diff line number Diff line change 1- {
2- "env" : {
3- "browser" : true ,
4- "commonjs" : true ,
5- "es6" : true ,
6- "node" : true
7- },
8- "extends" : " eslint:recommended" ,
9- "globals" : {
10- "Atomics" : " readonly" ,
11- "SharedArrayBuffer" : " readonly"
12- },
13- "parserOptions" : {
14- "ecmaVersion" : 2018 ,
15- "sourceType" : " module"
16- },
17- "rules" : {
18- "no-console" : 0 ,
19- "quotes" : [" error" , " single" ],
20- "comma-dangle" : [
21- " error" ,
22- {
23- "arrays" : " always-multiline" ,
24- "objects" : " always-multiline" ,
25- "imports" : " always-multiline" ,
26- "exports" : " always-multiline" ,
27- "functions" : " ignore"
28- }
29- ]
30- }
1+ {
2+ "env" : {
3+ "browser" : true ,
4+ "commonjs" : true ,
5+ "es6" : true ,
6+ "node" : true
7+ },
8+ "extends" : " eslint:recommended" ,
9+ "globals" : {
10+ "Atomics" : " readonly" ,
11+ "SharedArrayBuffer" : " readonly"
12+ },
13+ "parserOptions" : {
14+ "ecmaVersion" : 2018 ,
15+ "sourceType" : " module"
16+ },
17+ "rules" : {
18+ "no-console" : 0 ,
19+ "quotes" : [" error" , " single" ],
20+ "comma-dangle" : [
21+ " error" ,
22+ {
23+ "arrays" : " always-multiline" ,
24+ "objects" : " always-multiline" ,
25+ "imports" : " always-multiline" ,
26+ "exports" : " always-multiline" ,
27+ "functions" : " ignore"
28+ }
29+ ]
30+ }
3131}
Original file line number Diff line number Diff line change 1- {
2- "extends" : " stylelint-config-standard-scss" ,
3- "rules" : {
4- "no-empty-source" : null ,
5- "scss/comment-no-empty" : null ,
6- "scss/at-extend-no-missing-placeholder" : null ,
7- "at-rule-no-unknown" : [
8- true ,
9- {
10- "ignoreAtRules" : [
11- " extend" ,
12- " at-root" ,
13- " debug" ,
14- " warn" ,
15- " error" ,
16- " if" ,
17- " else" ,
18- " for" ,
19- " each" ,
20- " while" ,
21- " mixin" ,
22- " include" ,
23- " content" ,
24- " return" ,
25- " function" ,
26- " tailwind" ,
27- " apply" ,
28- " responsive" ,
29- " variants" ,
30- " screen"
31- ]
32- }
33- ]
34- }
1+ {
2+ "extends" : " stylelint-config-standard-scss" ,
3+ "rules" : {
4+ "no-empty-source" : null ,
5+ "scss/comment-no-empty" : null ,
6+ "scss/at-extend-no-missing-placeholder" : null ,
7+ "at-rule-no-unknown" : [
8+ true ,
9+ {
10+ "ignoreAtRules" : [
11+ " extend" ,
12+ " at-root" ,
13+ " debug" ,
14+ " warn" ,
15+ " error" ,
16+ " if" ,
17+ " else" ,
18+ " for" ,
19+ " each" ,
20+ " while" ,
21+ " mixin" ,
22+ " include" ,
23+ " content" ,
24+ " return" ,
25+ " function" ,
26+ " tailwind" ,
27+ " apply" ,
28+ " responsive" ,
29+ " variants" ,
30+ " screen"
31+ ]
32+ }
33+ ]
34+ }
3535}
You can’t perform that action at this time.
0 commit comments