Ticket #40946: 40946.diff
File 40946.diff, 1.2 KB (added by , 7 years ago) |
---|
-
.editorconfig
13 13 trim_trailing_whitespace = true 14 14 indent_style = tab 15 15 16 [{ .jshintrc,*.json,*.yml}]16 [{package.json,*.yml}] 17 17 indent_style = space 18 18 indent_size = 2 19 19 -
.jshintrc
1 1 { 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 "boss": true, 3 "curly": true, 4 "eqeqeq": true, 5 "eqnull": true, 6 "es3": true, 7 "expr": true, 8 "immed": true, 9 "noarg": true, 10 "nonbsp": true, 11 "onevar": true, 12 "quotmark": "single", 13 "trailing": true, 14 "undef": true, 15 "unused": true, 16 16 17 17 "browser": true, 18 18 19 20 21 22 23 24 25 19 "globals": { 20 "_": false, 21 "Backbone": false, 22 "jQuery": false, 23 "JSON": false, 24 "wp": false 25 } 26 26 }