diff options
author | Patrick Quist <partouf@gmail.com> | 2024-04-16 21:26:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-16 21:26:53 +0200 |
commit | b8325cf0c62654c905ba871ab36991e10164b53b (patch) | |
tree | f86c39d4f025704a7c2df7ad978d9c7856878002 /lib/compilers/cmakescript.ts | |
parent | 1fc1b9f7c6deab9f799884051e875f7d28c1db0f (diff) | |
download | compiler-explorer-b8325cf0c62654c905ba871ab36991e10164b53b.tar.gz compiler-explorer-b8325cf0c62654c905ba871ab36991e10164b53b.zip |
eslint root setting and fixes (#6307)gh-11409
Diffstat (limited to 'lib/compilers/cmakescript.ts')
-rw-r--r-- | lib/compilers/cmakescript.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/cmakescript.ts b/lib/compilers/cmakescript.ts index 0d54da6da..7390d2fd6 100644 --- a/lib/compilers/cmakescript.ts +++ b/lib/compilers/cmakescript.ts @@ -22,8 +22,8 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -import {BaseCompiler} from '../base-compiler.js'; import type {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces.js'; +import {BaseCompiler} from '../base-compiler.js'; export class CMakeScriptCompiler extends BaseCompiler { static get key() { |