We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54dd9af commit edcb7aaCopy full SHA for edcb7aa
.eslintrc
@@ -1,6 +1,8 @@
1
{
2
"extends": "airbnb/base",
3
"rules": {
4
+ "lines-around-directive": [0],
5
+ "arrow-parens": [0],
6
"no-param-reassign": [0],
7
"max-len": [0],
8
"prefer-arrow-callback": [0],
index.js
@@ -1,6 +1,4 @@
/* eslint-disable vars-on-top, no-var, prefer-template */
-'use strict';
-
var isRegExp = require('lodash.isregexp');
var escapeRegExp = require('lodash.escaperegexp');
var isString = require('lodash.isstring');
test.js
@@ -1,3 +1,4 @@
+/* eslint-disable import/no-extraneous-dependencies */
import test from 'ava';
import replaceString from './';
0 commit comments