node-gulp-4.0.2+~cs38.20.35/ 0000775 0000000 0000000 00000000000 14156670073 0015040 5 ustar 00root root 0000000 0000000 node-gulp-4.0.2+~cs38.20.35/.editorconfig 0000664 0000000 0000000 00000000326 14156670073 0017516 0 ustar 00root root 0000000 0000000 # http://editorconfig.org root = true [*] indent_style = space indent_size = 2 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true end_of_line = lf [*.md] trim_trailing_whitespace = false node-gulp-4.0.2+~cs38.20.35/.eslintrc.js 0000664 0000000 0000000 00000000070 14156670073 0017274 0 ustar 00root root 0000000 0000000 'use strict'; module.exports = require('./eslint.js'); node-gulp-4.0.2+~cs38.20.35/.gitattributes 0000664 0000000 0000000 00000000016 14156670073 0017730 0 ustar 00root root 0000000 0000000 * text eol=lf node-gulp-4.0.2+~cs38.20.35/.npmrc 0000664 0000000 0000000 00000000023 14156670073 0016153 0 ustar 00root root 0000000 0000000 package-lock=false node-gulp-4.0.2+~cs38.20.35/LICENSE 0000664 0000000 0000000 00000002060 14156670073 0016043 0 ustar 00root root 0000000 0000000 The MIT License (MIT) Copyright (c) 2015 gulp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. node-gulp-4.0.2+~cs38.20.35/README.md 0000664 0000000 0000000 00000001330 14156670073 0016314 0 ustar 00root root 0000000 0000000
# eslint-config-gulp [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Gitter chat][gitter-image]][gitter-url] Sharable eslint config for gulp projects ## Usage ```json // .eslintrc { "extends": "gulp" } ``` ## License MIT [downloads-image]: http://img.shields.io/npm/dm/eslint-config-gulp.svg [npm-url]: https://npmjs.org/package/eslint-config-gulp [npm-image]: http://img.shields.io/npm/v/eslint-config-gulp.svg [gitter-url]: https://gitter.im/gulpjs/gulp [gitter-image]: https://badges.gitter.im/gulpjs/gulp.png node-gulp-4.0.2+~cs38.20.35/eslint.js 0000664 0000000 0000000 00000001522 14156670073 0016674 0 ustar 00root root 0000000 0000000 'use strict'; var config = { "root": true, "extends": ["eslint:recommended", "prettier"], "plugins": [ "node" ], "parserOptions": { "ecmaVersion": 2018 }, "env": { "node": true, "es2017": true }, "rules": { "node/no-unsupported-features/es-syntax": [ 2, { "version": ">=0.10", "ignores": ["classes"] } ], "block-scoped-var": 2, "eqeqeq": [2, "smart"], "max-depth": [1, 3], "max-statements": [1, 30], "new-cap": 1, "no-extend-native": 2, "no-unused-vars": 1, }, "ignorePatterns": [ "coverage/**", "test/fixtures/**" ], "overrides": [ { "files": ["test/**"], "env": { "mocha": true }, "rules": { "max-len": 0, "max-statements": 0 } } ] }; module.exports = config; node-gulp-4.0.2+~cs38.20.35/package.json 0000664 0000000 0000000 00000001224 14156670073 0017325 0 ustar 00root root 0000000 0000000 { "name": "eslint-config-gulp", "version": "5.0.1", "description": "Sharable eslint config for gulp projects", "author": "Blaine Bublitz