Skip to content

Commit

Permalink
Merge pull request #65 from duhrer/GH-64
Browse files Browse the repository at this point in the history
Update to use latest version of ESLint (and plugin for formatting rules).
  • Loading branch information
amb26 authored Jan 12, 2024
2 parents d6d7d2f + 53e64ec commit 33964a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
11 changes: 5 additions & 6 deletions .fluidlintallrc-custom-options.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"options": {
"overrideConfig": {
"rules": {
"indent": 0,
"@stylistic/js/indent": 0,
"no-console": 0,
"no-undef": 0,
"semi": 0,
"@stylistic/js/semi": 0,
"strict": 0
}
}
Expand All @@ -22,7 +22,7 @@
"options": {
"overrideConfig": {
"rules": {
"comma-dangle": 0,
"@stylistic/js/comma-dangle": 0,
"no-undef": 0
}
}
Expand All @@ -33,7 +33,7 @@
"options": {
"overrideConfig": {
"rules": {
"semi": 0
"@stylistic/js/semi": 0
}
}
}
Expand Down Expand Up @@ -64,8 +64,7 @@
"options": {
"config": {
"single-trailing-newline": false,
"first-line-heading": false,
"single-trailing-newline": false
"first-line-heading": false
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fluid-lint-all",
"version": "1.2.9",
"version": "1.2.10",
"description": "Run the Fluid community's standard linting checks.",
"main": "index.js",
"bin": {
Expand All @@ -23,8 +23,8 @@
"homepage": "https://github.com/fluid-project/fluid-lint-all",
"dependencies": {
"@textlint/markdown-to-ast": "13.3.1",
"eslint": "8.35.0",
"eslint-config-fluid": "2.1.1",
"eslint": "8.53.0",
"eslint-config-fluid": "2.1.1-dev.20231104T144458Z.5488e1c.GH-17",
"eslint-plugin-jsdoc": "40.0.1",
"eslint-plugin-markdown": "1.0.2",
"fluid-glob": "1.0.7",
Expand Down
2 changes: 1 addition & 1 deletion src/js/lint-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ fluid.defaults("fluid.lintAll.checkRunner", {
Our approach doesn't work well with leading comments in json5 files, which appear to be incorrectly
indented. As we check for indentation using lintspaces, we can safely disable that check here.
*/
"indent": "off",
"@stylistic/js/indent": "off",
/*
Allow ES5 multi-line strings.
*/
Expand Down

0 comments on commit 33964a3

Please sign in to comment.