mirror of https://github.com/lukechilds/rollup.git
7 changed files with 29 additions and 21 deletions
@ -0,0 +1,19 @@ |
|||
{ |
|||
"rules": { |
|||
"indent": [ 2, "tab", { "SwitchCase": 1}], |
|||
"quotes": [ 2, "single" ], |
|||
"linebreak-style": [ 2, "unix" ], |
|||
"semi": [ 2, "always" ], |
|||
"no-mixed-spaces-and-tabs": [ 2, "smart-tabs" ], |
|||
"no-cond-assign": [ 0 ] |
|||
}, |
|||
"env": { |
|||
"es6": true, |
|||
"browser": true, |
|||
"node": true |
|||
}, |
|||
"extends": "eslint:recommended", |
|||
"ecmaFeatures": { |
|||
"modules": true |
|||
} |
|||
} |
@ -1,10 +0,0 @@ |
|||
{ |
|||
"esnext": true, |
|||
"undef": true, |
|||
"unused": true, |
|||
"globals": { |
|||
"process": true, |
|||
"module": true, |
|||
"assert": true |
|||
} |
|||
} |
@ -1,3 +1,3 @@ |
|||
export function unixizePath( path ) { |
|||
export function unixizePath ( path ) { |
|||
return path.split( /[\/\\]/ ).join( '/' ); |
|||
} |
|||
|
Loading…
Reference in new issue