Skip to content

Commit 3a1a8c8

Browse files
author
MuhammadTahaNasir
committed
🔧 Add basic ESLint config
1 parent 7d99566 commit 3a1a8c8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

eslint.config.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export default [
2+
{
3+
files: ['**/*.js'],
4+
languageOptions: {
5+
ecmaVersion: 'latest',
6+
sourceType: 'module',
7+
},
8+
rules: {
9+
semi: ['error', 'always'],
10+
quotes: ['error', 'single'],
11+
},
12+
},
13+
];

0 commit comments

Comments
 (0)