mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			361 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			361 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const path = require('path');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  extends: '../.eslintrc.js',
 | 
						|
  parser: "@typescript-eslint/parser",
 | 
						|
  plugins: ["@typescript-eslint", "notice"],
 | 
						|
  parserOptions: {
 | 
						|
    ecmaVersion: 9,
 | 
						|
    sourceType: "module",
 | 
						|
    project: path.join(__dirname, 'tsconfig.json'),
 | 
						|
  },
 | 
						|
  rules: {
 | 
						|
    '@typescript-eslint/no-floating-promises': 'error',
 | 
						|
  },
 | 
						|
};
 |