add_filter( 'wp_code_editor_settings', 'change_code_editor_settings'); function change_code_editor_settings( $settings ) { /** * codemirror * @see https://codemirror.net/doc/manual.html#config */ $settings['codemirror'] /** * CSSLint * @see https://github.com/CSSLint/csslint/wiki */ $settings['csslint'] /** * JSHint * @see https://jshint.com/docs/options */ $settings['jshint'] /** * HTMLHint * @see https://github.com/htmlhint/HTMLHint/wiki/Rules */ $settings['htmlhint'] return $settings; }
add_filter( 'wp_code_editor_settings', 'disable_csslint' ); function disable_csslint( $settings ){ if ($settings['codemirror']['mode'] === 'css') { $settings['codemirror']['lint'] = false; } return $settings; }
add_filter( 'wp_code_editor_settings', 'change_code_editor_settings'); function change_code_editor_settings( $settings ) { $settings['jshint']['globals']['axios'] = false // $settings['jshint']['globals']['user_rates'] = true // return $settings; }
add_filter( 'wp_code_editor_settings', 'change_code_editor_settings'); function change_code_editor_settings( $settings ) { $settings['htmlhint']['attr-value-not-empty'] = true return $settings; }
Source: https://habr.com/ru/post/428135/
All Articles