-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
Rename elastic-datemath, elastic-eslint-config-kibana, and elastic-safer-lodash-set Signed-off-by: Bishoy Boktor <[email protected]>
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "../../build/tsbuildinfo/packages/elastic-datemath" | ||
"tsBuildInfoFile": "../../build/tsbuildinfo/packages/opensearch-datemath" | ||
}, | ||
"include": [ | ||
"index.d.ts" | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
module.exports = { | ||
overrides: [ | ||
{ | ||
files: ['**/*.{test,test.mocks,mock}.{js,mjs,ts,tsx}', '**/__mocks__/**/*.{js,mjs,ts,tsx}'], | ||
plugins: ['jest'], | ||
|
||
env: { | ||
jest: true, | ||
}, | ||
|
||
rules: { | ||
'jest/no-focused-tests': 'error', | ||
'jest/no-identical-title': 'error', | ||
'import/order': 'off', | ||
}, | ||
}, | ||
], | ||
}; |