mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 14:20:43 -05:00
14 lines
245 B
JavaScript
14 lines
245 B
JavaScript
// .eslintrc.js example
|
|
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
node: true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
}
|
|
|