Created
January 14, 2015 23:27
-
-
Save msikma/8034e34c9204834c73c9 to your computer and use it in GitHub Desktop.
jscs configuration that excludes es6/jsx
This file contains hidden or 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
// JSCS - for testing code style. | |
jscs: { | |
options: { | |
config: 'jscs.json', | |
}, | |
gruntfile: { | |
src: ['gruntfile.js'] | |
}, | |
// es6 and jsx are not testable yet. | |
src: { | |
src: ['reisan/**/(*.js|!(*.es6.js|*.jsx))'] | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment