Skip to content

Instantly share code, notes, and snippets.

@mauroquinteros
Created November 24, 2022 03:56
Show Gist options
  • Save mauroquinteros/dfe561554ea3e95a855034cbe303aae3 to your computer and use it in GitHub Desktop.
Save mauroquinteros/dfe561554ea3e95a855034cbe303aae3 to your computer and use it in GitHub Desktop.
Eslint and Prettier
module.exports = {
env: {
commonjs: true,
es2021: true,
node: true,
},
extends: ['standard', 'eslint-config-prettier'],
overrides: [],
parserOptions: {
ecmaVersion: 'latest',
},
rules: {},
};
dist
package-lock.json
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment