fd73dc051c
- Update to Webpack 5 - Use @effortlessmotion dynamic html and inline source plugins - Remove .clasp.json and use SAMPLE file - Consistent prettier formatting throughout - Update packages to latest versions Co-authored-by: Kevin Malakoff <kmalakoff@gmail.com>
20 lines
467 B
JSON
20 lines
467 B
JSON
{
|
|
"root": true,
|
|
"parser": "@babel/eslint-parser",
|
|
"extends": ["airbnb-base", "plugin:prettier/recommended"],
|
|
"plugins": ["prettier"],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"camelcase": "warn",
|
|
"import/prefer-default-export": "warn",
|
|
"import/no-extraneous-dependencies": "warn",
|
|
"prefer-object-spread": "warn",
|
|
"spaced-comment":"off"
|
|
},
|
|
"parserOptions": {
|
|
"babelOptions": {
|
|
"configFile": "./dev/.babelrc"
|
|
}
|
|
}
|
|
}
|