-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
2,225 additions
and
2,458 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 |
---|---|---|
|
@@ -7,6 +7,9 @@ | |
"repository": "[email protected]:openaddresses/batch", | ||
"author": "ingalls <[email protected]>", | ||
"private": false, | ||
"engines": { | ||
"node": ">= 22" | ||
}, | ||
"scripts": { | ||
"test": "echo 'no tests'", | ||
"lint": "eslint cloudformation/" | ||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
// Does not need to mark instance | ||
// as protected as it runs on a managed queue | ||
|
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 |
---|---|---|
@@ -1,38 +1,38 @@ | ||
import js from "@eslint/js"; | ||
import nodePlugin from "eslint-plugin-n"; | ||
import js from '@eslint/js'; | ||
import nodePlugin from 'eslint-plugin-n'; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
nodePlugin.configs["flat/recommended-module"], | ||
nodePlugin.configs['flat/recommended-module'], | ||
{ | ||
"rules": { | ||
"no-console": 0, | ||
"arrow-parens": [ "error", "always" ], | ||
"no-var": "error", | ||
"prefer-const": "error", | ||
"array-bracket-spacing": [ "error", "never" ], | ||
"comma-dangle": [ "error", "never" ], | ||
"computed-property-spacing": [ "error", "never" ], | ||
"eol-last": "error", | ||
"eqeqeq": [ "error", "smart" ], | ||
"indent": [ "error", 4, { "SwitchCase": 1 } ], | ||
"no-confusing-arrow": [ "error", { "allowParens": false } ], | ||
"no-extend-native": "error", | ||
"no-mixed-spaces-and-tabs": "error", | ||
"func-call-spacing": [ "error", "never" ], | ||
"no-trailing-spaces": "error", | ||
"no-unused-vars": "error", | ||
"no-use-before-define": [ "error", "nofunc" ], | ||
"object-curly-spacing": [ "error", "always" ], | ||
"prefer-arrow-callback": "error", | ||
"quotes": [ "error", "single", "avoid-escape" ], | ||
"semi": [ "error", "always" ], | ||
"space-infix-ops": "error", | ||
"spaced-comment": [ "error", "always" ], | ||
"keyword-spacing": [ "error", { "before": true, "after": true } ], | ||
"template-curly-spacing": [ "error", "never" ], | ||
"semi-spacing": "error", | ||
"strict": "error", | ||
'rules': { | ||
'no-console': 0, | ||
'arrow-parens': ['error', 'always'], | ||
'no-var': 'error', | ||
'prefer-const': 'error', | ||
'array-bracket-spacing': ['error', 'never'], | ||
'comma-dangle': ['error', 'never'], | ||
'computed-property-spacing': ['error', 'never'], | ||
'eol-last': 'error', | ||
'eqeqeq': ['error', 'smart'], | ||
'indent': ['error', 4, { 'SwitchCase': 1 }], | ||
'no-confusing-arrow': ['error', { 'allowParens': false }], | ||
'no-extend-native': 'error', | ||
'no-mixed-spaces-and-tabs': 'error', | ||
'func-call-spacing': ['error', 'never'], | ||
'no-trailing-spaces': 'error', | ||
'no-unused-vars': 'error', | ||
'no-use-before-define': ['error', 'nofunc'], | ||
'object-curly-spacing': ['error', 'always'], | ||
'prefer-arrow-callback': 'error', | ||
'quotes': ['error', 'single', 'avoid-escape'], | ||
'semi': ['error', 'always'], | ||
'space-infix-ops': 'error', | ||
'spaced-comment': ['error', 'always'], | ||
'keyword-spacing': ['error', { 'before': true, 'after': true }], | ||
'template-curly-spacing': ['error', 'never'], | ||
'semi-spacing': 'error', | ||
'strict': 'error' | ||
} | ||
} | ||
] | ||
]; |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
import { interactive } from './lib/pre.js'; | ||
|
||
import Meta from './lib/meta.js'; | ||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
// Does not need to mark instance | ||
// as protected as it runs on a managed queue | ||
|
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
import { interactive } from './lib/pre.js'; | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
import { interactive } from './lib/pre.js'; | ||
|
||
import Job from './lib/job.js'; | ||
|