Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
cc90ac5
Fix shrinkwrap file for once and for all
jauco Jan 30, 2015
a3257bc
Update dependency
jauco Jan 30, 2015
6109004
Update jester to the new eslint API.
jauco Jan 30, 2015
0d4c519
Have jester read webpack.config.js just like normal webpack
jauco Feb 16, 2015
ce21d39
have jester-init write a webpack config that makes jester's behaviour…
jauco Feb 16, 2015
54ea741
Define config location in loadConfig.
jauco Feb 16, 2015
874bac3
Remove need for dynamic output path in webpack config.
jauco Feb 16, 2015
7724f83
Generate a webpack.config.js
jauco Feb 16, 2015
a0a298e
Boy Scout. Eslint syntax error
jauco Feb 16, 2015
941eb9c
Bump version
jauco Feb 16, 2015
74163fc
Update dependencies and shrinkwrap
jauco Feb 16, 2015
525391d
Bump version for release
jauco Feb 16, 2015
3143cfd
Fix eslint errors
jauco Feb 16, 2015
52ee1af
Quick fix for allowing karma to load custom js files prior to loading…
jauco Feb 23, 2015
2e9961b
Fix jester overwriting tests for files that had the same basename but…
jauco Feb 24, 2015
b2a1be0
Refactoring: moved all testfile related code to one file
jauco Feb 26, 2015
c326080
Added documentation and removed magic constants
jauco Feb 26, 2015
8468781
Made testFileHelpers more readable. Also changed the workings slightl…
jauco Feb 26, 2015
5df24c6
Changed the test file matcher of jester to be more lax and match any …
jauco Feb 26, 2015
2a5589b
Bump version
jauco Feb 26, 2015
1c327b4
Update eslint to 0.17.1
jauco Mar 27, 2015
4a6e0f2
Eslint plugins are loaded in scope of the engine caller. Make sure th…
jauco Mar 27, 2015
5fed609
Make artifactpath a webpack config setting instead of a jester one
Apr 2, 2015
032ced1
Update i because the maintainer accidentally removed out version. See…
jauco Apr 20, 2015
c252c75
bugfix: wrote json in lowercase
jauco Apr 20, 2015
828f556
fix: remove folder that wasn't explained in the readme
jauco Apr 20, 2015
cfce84c
Remove source-map-support module. It misbehaves often and the only br…
jauco Apr 20, 2015
08c0b93
Also add a minimal .eslintrc
jauco Apr 20, 2015
3741ede
update version
jauco Apr 20, 2015
1e672fd
Made createEntryModules work on Windows (escape directory separator)
tseidler Jun 10, 2015
f6950b3
Merge pull request #25 from tseidler/updateEslint
jauco Jun 15, 2015
ae696e5
Use webpack entry points
Jun 15, 2015
a122192
Small cleanup
Jun 22, 2015
31d6346
Merge pull request #27 from jauco/entry-points
jauco Jun 22, 2015
db5da4d
Bump version for new release
Jun 22, 2015
fbe742b
Allow array configs for webpack
jauco Aug 24, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"env": {
"node": true
},
"rules": {
//For IE8:
//"no-comma-dangle": 2,
"no-comma-dangle": 0,
"no-reserved-keys": 0,
"no-cond-assign": [2, "except-parens"], //disallow `if (foo = 2)` do allow `if ((foo = 2))` and `if ((foo = bar) === 2)`
//regex errors
"no-control-regex": 2, //probably a mistake in using the \ character in your regex
"no-empty-class": 2,
"no-dupe-keys": 2,
"no-invalid-regexp": 2,
//semi-colon styling
"no-extra-semi": 2,
"semi": [2, "always"],
"no-space-before-semi": 2,
//assignment errors
"no-func-assign": 2, //don't assign to the implicit variable created by defining a function
"no-inner-declarations": [2, "functions"], //don't declare a function inside a block (is an error in strict mode)
"no-irregular-whitespace": 2,
"no-negated-in-lhs": 2,
"no-sparse-arrays": 2,
"no-unreachable": 2,
"use-isnan": 2,
"valid-jsdoc": 2,
"valid-typeof": 2,
"strict": [2, "global"],
"global-strict": 0,//needs to be disabled explicitly until removed in 1.0
"consistent-return": 2,
"no-console": 0,
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"quotes": 0,
"no-use-before-define": [2, "nofunc"],
"no-empty": 2, //empty catches are allowed, other empty blocks should be avoided
"no-multi-str": 0
}
}
3 changes: 1 addition & 2 deletions jester.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"readme": "./readme.md",
"entryGlob": "app/features/*/feature.js",
"karmaPath": "./build/karma/",
"artifactPath": "./build/artifacts",
"karmaOptions": {
"proxies": {},
"browsers": [
Expand Down Expand Up @@ -143,4 +142,4 @@
"no-bitwise": 1,
"no-plusplus": 0
}
}
}
Loading