mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-25 10:01:30 -04:00
13 lines
240 B
JavaScript
Executable File
13 lines
240 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
var path = require('path')
|
|
var eslint = require('eslint')
|
|
var opts = {
|
|
eslint: eslint,
|
|
eslintConfig: {
|
|
configFile: path.join(__dirname, 'standard.json'),
|
|
useEslintrc: false
|
|
}
|
|
}
|
|
|
|
require('../../').cli(opts)
|