b57742018a
JSON files don't need a particular indent style, this was just inherited from the jQuery `.editorconfig`, that we based ours on. `package.json` is staying in the 2-space-indent group for now, due to npm 3 and 4 having issues. Upgrading to npm 5 will allow us to remove `package.json`, too. Props netweb. Fixes #40946. git-svn-id: https://develop.svn.wordpress.org/trunk@41835 602fd350-edb4-49c9-b593-d223f7449a82
30 lines
419 B
Plaintext
30 lines
419 B
Plaintext
{
|
|
"boss": true,
|
|
"curly": true,
|
|
"eqeqeq": true,
|
|
"eqnull": true,
|
|
"es3": true,
|
|
"expr": true,
|
|
"immed": true,
|
|
"noarg": true,
|
|
"nonbsp": true,
|
|
"onevar": true,
|
|
"quotmark": "single",
|
|
"trailing": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
|
|
"browser": true,
|
|
|
|
"globals": {
|
|
"_": false,
|
|
"Backbone": false,
|
|
"jQuery": false,
|
|
"JSON": false,
|
|
"wp": false,
|
|
"export": false,
|
|
"module": false,
|
|
"require": false
|
|
}
|
|
}
|