- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
18 lines
376 B
JavaScript
18 lines
376 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
jest: true,
|
|
},
|
|
extends: "eslint:recommended",
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
ecmaVersion: 6,
|
|
sourceType: 'module'
|
|
}
|
|
}
|