mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 06:55:08 -04:00
move eslintrc up a directory
This commit is contained in:
parent
f7547db272
commit
ee07b72415
4 changed files with 12 additions and 12 deletions
10
Gruntfile.js
10
Gruntfile.js
|
@ -92,13 +92,13 @@ module.exports = function (grunt) {
|
|||
}, function(error, result) {
|
||||
if (error) {
|
||||
if (error instanceof Error) {
|
||||
done(error)
|
||||
done(error);
|
||||
} else {
|
||||
done(new Error(error));
|
||||
done(new Error(error));
|
||||
}
|
||||
} else {
|
||||
grunt.file.write("build/prod/cyberchef.htm", result);
|
||||
done(true);
|
||||
grunt.file.write("build/prod/cyberchef.htm", result);
|
||||
done(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -113,7 +113,7 @@ module.exports = function (grunt) {
|
|||
},
|
||||
eslint: {
|
||||
options: {
|
||||
configFile: "src/.eslintrc.json"
|
||||
configFile: "./.eslintrc.json"
|
||||
},
|
||||
configs: ["Gruntfile.js"],
|
||||
core: ["src/core/**/*.js", "!src/core/lib/**/*"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue