This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Chore: Update devDeps. * Chore: Lint according to latest config * Breaking: Switch to ESM; also adds eslint-plugin-jsdoc for linter * Fix: Sync with eslint-visitor-keys, including fixing cjs linting * Update package.json Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com> * Test: Drop Node 13, 10, 8 tests, and add 16, 12.22.0 * Docs: Add comment to explain shelljs command * Refactor: Apply new API and ESM changes * Chore: Update devDeps. * Docs: Update espree usage in README * Test: Add CJS file * Update README.md Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com> * Fix: Avoid named imports of CJS modules * Fix: For browser compatibility, avoid package.json file-reading attempt * Refactor: Drop `fs` from Rollup now that not in use * Fix: Stop re-exporting Scope child classes and only export `Scope` * Fix: Re-export Reference, Definition, and PatternVisitor * Update Makefile.js Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update tests/commonjs.cjs Co-authored-by: Brandon Mills <btmills@users.noreply.github.com> Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com> Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> Co-authored-by: Brandon Mills <btmills@users.noreply.github.com>
- Loading branch information
1 parent
0b4a5f1
commit 82a7e6d
Showing
54 changed files
with
435 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
; EditorConfig file: https://EditorConfig.org | ||
; Install the "EditorConfig" plugin into your editor to use | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
|
||
[package.json] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"use strict"; | ||
|
||
module.exports = { | ||
root: true, | ||
extends: [ | ||
"eslint", | ||
"plugin:node/recommended-module" | ||
], | ||
parserOptions: { | ||
sourceType: "module", | ||
ecmaVersion: "2020" | ||
}, | ||
overrides: [ | ||
{ | ||
files: ["tests/**/*"], | ||
env: { | ||
mocha: true | ||
} | ||
}, | ||
{ | ||
files: ["*.cjs"], | ||
extends: ["eslint", "plugin:node/recommended-script"], | ||
parserOptions: { | ||
sourceType: "script", | ||
ecmaVersion: "2020" | ||
} | ||
} | ||
], | ||
ignorePatterns: ["/dist", "/coverage"] | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ npm-debug.log | |
/.vscode | ||
.sublimelinterrc | ||
.eslint-release-info.json | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.