mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			934 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			934 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  parser: 'babel-eslint',
 | 
						|
  extends: [
 | 
						|
    'eslint:recommended',
 | 
						|
    'plugin:react/recommended',
 | 
						|
    'plugin:redux-saga/recommended',
 | 
						|
    'prettier',
 | 
						|
  ],
 | 
						|
  plugins: ['react', 'redux-saga'],
 | 
						|
  env: {
 | 
						|
    browser: true,
 | 
						|
    commonjs: true,
 | 
						|
    es6: true,
 | 
						|
    node: true,
 | 
						|
    jest: true,
 | 
						|
    mocha: true,
 | 
						|
  },
 | 
						|
  parserOptions: {
 | 
						|
    ecmaVersion: 2018,
 | 
						|
    ecmaFeatures: {
 | 
						|
      jsx: true,
 | 
						|
    },
 | 
						|
    sourceType: 'module',
 | 
						|
  },
 | 
						|
  // all readonly
 | 
						|
  globals: {
 | 
						|
    strapi: false,
 | 
						|
    window: false,
 | 
						|
    cy: false,
 | 
						|
    Cypress: false,
 | 
						|
    expect: false,
 | 
						|
    assert: false,
 | 
						|
    chai: false,
 | 
						|
    // TODO: put all this in process.env in webpack to avoid having to set them here
 | 
						|
    REMOTE_URL: true,
 | 
						|
    BACKEND_URL: true,
 | 
						|
    PUBLIC_PATH: true,
 | 
						|
    MODE: true,
 | 
						|
    NODE_ENV: true,
 | 
						|
  },
 | 
						|
  rules: {
 | 
						|
    'generator-star-spacing': 0,
 | 
						|
    'no-console': 0,
 | 
						|
  },
 | 
						|
  settings: {
 | 
						|
    react: {
 | 
						|
      version: '16.5.2',
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 |