This repository was archived by the owner on Sep 15, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +25
-11
lines changed Expand file tree Collapse file tree 4 files changed +25
-11
lines changed Original file line number Diff line number Diff line change 33 "env" : {
44 "node" : true
55 },
6+ "parserOptions" : {
7+ "sourceType" : " module"
8+ },
69 "extends" : " eslint:recommended" ,
710 "rules" : {
8- "array-bracket-spacing" : " error" ,
11+ "array-bracket-spacing" : [ " error" , " never " ] ,
912 "array-callback-return" : " error" ,
1013 "block-scoped-var" : " error" ,
1114 "block-spacing" : " error" ,
1417 " 1tbs"
1518 ],
1619 "callback-return" : " error" ,
17- "camelcase" : " error" ,
20+ "camelcase" : [
21+ " error" ,
22+ {
23+ "properties" : " never"
24+ }
25+ ],
1826 "comma-dangle" : " error" ,
1927 "comma-spacing" : [
2028 " error" ,
2735 " error" ,
2836 " last"
2937 ],
38+ "computed-property-spacing" : [" error" , " never" ],
3039 "consistent-return" : " error" ,
3140 "consistent-this" : [
3241 " error" ,
94103 "no-alert" : " error" ,
95104 "no-array-constructor" : " error" ,
96105 "no-bitwise" : " error" ,
106+ "no-buffer-constructor" : " error" ,
97107 "no-caller" : " error" ,
98108 "no-catch-shadow" : " error" ,
99109 "no-confusing-arrow" : " error" ,
110+ "no-console" : " off" ,
100111 "no-div-regex" : " error" ,
101112 "no-duplicate-imports" : " error" ,
102113 "no-else-return" : " error" ,
215226 " always"
216227 ],
217228 "semi-spacing" : " error" ,
229+ "sort-imports" : " error" ,
218230 "space-before-blocks" : [
219231 " error" ,
220232 " always"
221233 ],
222234 "spaced-comment" : [
223- " error " ,
235+ " off " ,
224236 " always"
225237 ],
226238 "space-infix-ops" : " error" ,
Original file line number Diff line number Diff line change 1- 'use strict' ;
2-
31module . exports = function ( grunt ) {
42
53 grunt . initConfig ( {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ../../../.eslintrc.json" ,
3+ "env" : {
4+ "browser" : true ,
5+ "node" : false
6+ },
7+ "parserOptions" : {
8+ "sourceType" : " script"
9+ }
10+ }
You can’t perform that action at this time.
0 commit comments