diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-11-02 00:48:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 00:48:05 +0100 |
commit | e84886aa37107f35d61b3bde9406c78c13f77cee (patch) | |
tree | 3e1d1032de8bb69c5b9be17a93d217de92d608cd /build/tasks/promises_aplus_tests.js | |
parent | cd27f306621d88882df003a9bd32391a3bb95ef3 (diff) | |
download | jquery-e84886aa37107f35d61b3bde9406c78c13f77cee.tar.gz jquery-e84886aa37107f35d61b3bde9406c78c13f77cee.zip |
Build: Update ESLint-related packages, fix linting errors (3.x version)
The main change is the new rule in `eslint-config-jquery`:
`template-curly-spacing`.
Closes gh-5348
Ref jquery/eslint-config-jquery#21
Ref gh-5347
Diffstat (limited to 'build/tasks/promises_aplus_tests.js')
-rw-r--r-- | build/tasks/promises_aplus_tests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tasks/promises_aplus_tests.js b/build/tasks/promises_aplus_tests.js index b078e3c5b..931db1b44 100644 --- a/build/tasks/promises_aplus_tests.js +++ b/build/tasks/promises_aplus_tests.js @@ -11,7 +11,7 @@ if ( !verifyNodeVersion() ) { const command = path.resolve( __dirname, - `../../node_modules/.bin/promises-aplus-tests${os.platform() === "win32" ? ".cmd" : ""}` + `../../node_modules/.bin/promises-aplus-tests${ os.platform() === "win32" ? ".cmd" : "" }` ); const args = [ "--reporter", "dot", "--timeout", "2000" ]; const tests = [ |