Skip to content

Commit 77e58b5

Browse files
authored
Merge pull request plotly#7105 from plotly/no-eslint-config
Remove ESLint config files and complete switching to Biome
2 parents f965e24 + 82ef255 commit 77e58b5

18 files changed

+7
-1296
lines changed

.circleci/config.yml

-6
Original file line numberDiff line numberDiff line change
@@ -432,12 +432,6 @@ jobs:
432432
- run:
433433
name: Test plotly.min.js import using requirejs
434434
command: npm run test-requirejs
435-
# - run:
436-
# name: Test plotly bundles against es6
437-
# command: npm run no-es6-dist
438-
# - run:
439-
# name: Display function constructors in all bundles
440-
# command: npm run no-new-func
441435

442436
test-stackgl-bundle:
443437
docker:

.eslintignore

-8
This file was deleted.

.eslintrc

-82
This file was deleted.

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@ tags
1515
!.circleci
1616
!.gitignore
1717
!.npmignore
18-
!.eslintrc
19-
!.eslintignore

.npmignore

-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,5 @@ bower.json
1414

1515
.ackrc
1616
.agignore
17-
.eslintignore
18-
.eslintrc
1917

2018
npm-debug.log

CONTRIBUTING.md

-4
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,3 @@ Other methods used by some trace modules:
391391

392392
Check if ok, with `npm run lint`
393393

394-
- See [eslintrc](https://github.com/plotly/plotly.js/blob/master/.eslintrc) and
395-
the eslint [list of rules](http://eslint.org/docs/rules/) for more details.
396-
- Rules listed in the eslintrc file with the ignore flag `0` are the recommended
397-
rules for new code added.

devtools/.eslintrc

-7
This file was deleted.

devtools/regl_codegen/server.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var reglTraceList = [
2222
];
2323

2424
// Create server
25-
var static = ecstatic({
25+
var _static = ecstatic({
2626
root: constants.pathToRoot,
2727
cache: 0,
2828
gzip: true,
@@ -53,7 +53,7 @@ var server = http.createServer(function(req, res) {
5353
res.end();
5454
setTimeout(process.exit, 1000);
5555
} else {
56-
static(req, res);
56+
_static(req, res);
5757
}
5858
});
5959

lib/.eslintrc

-3
This file was deleted.

lib/locales/.eslintrc

-6
This file was deleted.

0 commit comments

Comments
 (0)