Skip to content

Commit e21d05b

Browse files
committedJan 18, 2025
feat: tweakment 🪛
1 parent ce4ac31 commit e21d05b

File tree

4 files changed

+123
-119
lines changed

4 files changed

+123
-119
lines changed
 

‎README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ In `eslint.config.js` file:
3131
import ultraRefined from 'eslint-config-ultra-refined';
3232

3333
export default [
34+
{
35+
ignores: ['dist'], // global ignores
36+
},
3437
...ultraRefined,
3538
// your modifications
3639
{
37-
ignores: ['dist'],
3840
rules: {
3941
// your modifications
4042
},

‎eslint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@ export default [
406406
'no-template-curly-in-string': 'error',
407407
'no-throw-literal': 'error',
408408
'no-undef-init': 'error',
409+
'no-unmodified-loop-condition': 'warn',
409410
'no-unneeded-ternary': 'error',
410411
'no-unreachable-loop': 'error',
411412
'no-unused-vars': [

‎package-lock.json

+108-107
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"description": "Ultra refined ESLint shareable config 📜",
1111
"devDependencies": {
1212
"@babel/core": "^7.26.0",
13-
"@babel/eslint-parser": "^7.25.9",
14-
"@eslint/js": "^9.17.0",
15-
"@stylistic/eslint-plugin": "^2.12.1",
16-
"eslint": "^9.17.0",
17-
"globals": "^15.13.0"
13+
"@babel/eslint-parser": "^7.26.5",
14+
"@eslint/js": "^9.18.0",
15+
"@stylistic/eslint-plugin": "^2.13.0",
16+
"eslint": "^9.18.0",
17+
"globals": "^15.14.0"
1818
},
1919
"files": [
2020
"*.js"
@@ -35,11 +35,11 @@
3535
"license": "MIT",
3636
"peerDependencies": {
3737
"@babel/core": "^7.26.0",
38-
"@babel/eslint-parser": "^7.25.9",
39-
"@eslint/js": "^9.17.0",
40-
"@stylistic/eslint-plugin": "^2.12.1",
41-
"eslint": "^9.17.0",
42-
"globals": "^15.13.0"
38+
"@babel/eslint-parser": "^7.26.5",
39+
"@eslint/js": "^9.18.0",
40+
"@stylistic/eslint-plugin": "^2.13.0",
41+
"eslint": "^9.18.0",
42+
"globals": "^15.14.0"
4343
},
4444
"repository": {
4545
"type": "git",
@@ -54,5 +54,5 @@
5454
"type": "module",
5555
"main": "index.js",
5656
"name": "eslint-config-ultra-refined",
57-
"version": "3.3.1"
57+
"version": "3.3.2"
5858
}

0 commit comments

Comments
 (0)
Please sign in to comment.