mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
* Switch to airbnb's eslint * Applies automatic fixes * Clean up dependencies * New lint rules * Apply auto fixes * Prettier * Update prettier position in eslint config * Aligns prettier and eslint * Use partial configs for client and server directories * Finalizes eslint config (for now) * Applies all elsint fixes * Removes duplciated config * Fixes build & local dev * Fix CI build
11 lines
127 B
JavaScript
11 lines
127 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: 0,
|
|
node: 1,
|
|
},
|
|
rules: {
|
|
'no-console': 0,
|
|
'global-require': 0,
|
|
},
|
|
};
|