Skip to content

Commit

Permalink
Update for new eslint-config
Browse files Browse the repository at this point in the history
  • Loading branch information
fasttime committed Aug 5, 2024
1 parent 2872c88 commit 83460e5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 21 deletions.
1 change: 0 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ task
files: ['lib/**/*.ts'],
ignores: ['lib/feature-all.d.ts'],
tsVersion: 'latest',
languageOptions: { parserOptions: { project: 'tsconfig.json' } },
},
{
files: ['test/acceptance/**/*.feature'],
Expand Down
7 changes: 1 addition & 6 deletions packages/~feature-hub/dev/impl.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,11 @@ export async function lint()
{
files: ['src/**/*.ts', 'test/*.ts'],
tsVersion: 'latest',
languageOptions: { parserOptions: { project: 'tsconfig.json' } },
},
{
files: ['test/spec/**/*.ts'],
tsVersion: 'latest',
languageOptions:
{
globals: { ...ebddGlobals, ...globals.node },
parserOptions: { project: 'tsconfig.json' },
},
languageOptions: { globals: { ...ebddGlobals, ...globals.node } },
rules: { 'n/prefer-node-protocol': 'off' },
},
{
Expand Down
7 changes: 1 addition & 6 deletions packages/~result-format/dev/impl.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,11 @@ export async function lint()
{
files: ['src/**/*.ts', 'test/*.ts'],
tsVersion: 'latest',
languageOptions: { parserOptions: { project: 'tsconfig.json' } },
},
{
files: ['test/spec/**/*.ts'],
tsVersion: 'latest',
languageOptions:
{
globals: { ...ebddGlobals, ...globals.node },
parserOptions: { project: 'tsconfig.json' },
},
languageOptions: { globals: { ...ebddGlobals, ...globals.node } },
rules: { 'n/prefer-node-protocol': 'off' },
},
{
Expand Down
7 changes: 1 addition & 6 deletions packages/~solution/dev/impl.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,11 @@ export async function lint()
{
files: ['src/**/*.ts'],
tsVersion: 'latest',
languageOptions: { parserOptions: { project: 'tsconfig.json' } },
},
{
files: ['test/spec/**/*.ts'],
tsVersion: 'latest',
languageOptions:
{
globals: { ...ebddGlobals, ...globals.node },
parserOptions: { project: 'tsconfig.json' },
},
languageOptions: { globals: { ...ebddGlobals, ...globals.node } },
rules: { 'n/prefer-node-protocol': 'off' },
},
{
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ The following source will do an `alert(1)` in any browser, including Internet Ex
To use JScrewIt in your project, download
[jscrewit.js](https://cdn.jsdelivr.net/npm/jscrewit/lib/jscrewit.js) (uncompressed, development
version) or
[jscrewit.min.js](https://cdn.jsdelivr.net/npm/jscrewit/lib/jscrewit.min.js) (compressed,
productive version) from npm and include it in your HTML file.
[jscrewit.min.js](https://cdn.jsdelivr.net/npm/jscrewit/lib/jscrewit.min.js) (compressed, productive
version) from npm and include it in your HTML file.

```html
<script src="jscrewit.js"></script>
Expand Down

0 comments on commit 83460e5

Please sign in to comment.