1. Update dependencies - Add font-awesome as dependency - Switch to Bootstrap 4 dev branch - Remove eslint airbnb style (we're not using it) 2. Imported images and fonts should go into dist/images and dist/fonts, respectively 3. Only lint our own code, not external code (fixes #1633)
18 lines
246 B
Plaintext
18 lines
246 B
Plaintext
{
|
|
"root": true,
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"wp": true
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"jquery": true,
|
|
"node": true,
|
|
"amd": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"no-console": 0
|
|
}
|
|
}
|