Use Lint code in Adobe Dreamweaver to detect errors
Learn how to lint HTML, CSS, DW templates and JS files in Adobe Dreamweaver. View the errors and warnings in the Output panel and jump to the erroneous lines of code with a single click.

Whether you are a rookie or an experienced coder, there are always chances of errors creeping in to your code inadvertently or due to lack of knowledge. When the web page or even a portion of it doesn't look like what you expected, you are forced to debug code to find any syntax or logical errors. Debugging can be an extremely strenuous and a time-consuming process especially in cases of complex implementations.

Dreamweaver makes debugging code for common errors simple and easy with the help of linting. Linting is the process of analyzing code to flag potential errors or suspicious usage of code. HTML syntax errors, parsing errors in CSS, or warnings in JavaScript files are some of the things flagged by linting in Dreamweaver.

The errors and warnings found are listed in a separate panel - Output panel - docked at the bottom of the workspace. Each line in the panel helps you jump to the portion of the code where the error has occurred, making it easy to find and fix the code. Also, the line numbers of the erroneous code are highlighted in red for errors and yellow for warnings. When you hover your mouse over the highlighted line numbers, a preview of the error or warning pops up.

With on edit linting feature, errors and warnings display in the output panel simultaneously while editing the codes.

Dreamweaver lets you lint HTML (.htm and .html), CSS, DW Templates, and JavaScript files. 

Perform the following steps to lint your code in these files:

  1. Specify linting rules by editing the HTML, CSS, DW Templates, and JS configuration files. See Specify linting rules for more information.

  2. Enable or disable linting. You can lint files when they are edited, loaded or saved.

Errors and warnings found in the files are displayed in the output panel. For more information, see Linting results and the Output panel.

Enable linting, on edit linting and specify linting rules

Click Edit > Preferences (Win) or Dreamweaver > Preferences (Mac). In Category list, click Linting, select Enable Linting, and click Apply.

On edit linting

In Dreamweaver, on edit linting feature is enabled by default. To disable, click Edit > Preferences (Win) or Dreamweaver > Preferences (Mac). In the category list, click Linting, select On edit linting and click Apply.

On edit linting

Specify linting rules

You can lint HTML, CSS, and JS files by editing the linting rules in the corresponding configuration files:

  • HTML: DW.htmlhintrc
  • CSS: DW.csslintrc
  • JS: .eslintrc

To access and edit these files, perform the following steps:

  1. Click Edit > Preferences (Win) or Dreamweaver > Preferences (Mac). 

  2. Select Linting in the Category list.

  3. In the Edit Rule Set section, click the required file type and click Edit & Apply Changes.

    The corresponding configuration file opens in Dreamweaver.

  4. Edit or add linting rules to the configuration files. Refer to the following documentation for more information on linting rules:

    In these configuration files, you can also set the type of errors or warnings to be displayed. 

Opomba:

The linting rules configuration file for earlier versions of Dreamweaver 19.0 is JS: DW.jshintrc. You can refer to http://jshint.com/docs/options/

ECMAScript 6 linting

Dreamweaver supports ECMAScript 6 syntax. Dreamweaver also supports linting of ECMAScript code, with ESLint defaulting as JavaScript linter.

  1. Click Site > Manage Sites.

    Manage Sites dialog
    Choose the website from Manage Sites dialog
  2. Select Advanced Settings from the left pane of Site Setup dialog window. 

  3. Select JS Lint from the Advanced Settings in left pane. 

    You can click the drop-down list adjacent to ECMAScript Version and choose 3, 5, or 6. Dreamweaver uses the default rule set for the version you select. 

    Choose ECMAScript version
    Choose ECMAScript version
  4. To customize the rule set, you can select Configuration File from the drop-down list and click Edit Configuration File

    Edit JS Lint Configuration file
    Edit JS Lint Configuration file

    The changes you make in Site Setup are saved and a new file .eslintrc.js is created in site root if it is not present.

    .eslintrc.js file opens in the site root for editing. For more information, see ESLint rules

    .eslintrc.js configuration file
    .eslintrc.js configuration file

    Opomba:

    • The ECMAScript Version settings defined in site setup dialog has precedence over the .eslintrc.js file used in site root. 
    • If you do not have ESLint configuration files in the site, Dreamweaver searches for the configuration files in all locations leading up to the root directory.

    For more information on configuration file cascading and hierarchy, see ESLint site

Linting results and the Output panel

The linting results - errors and warnings - are listed in the Output panel. The Output panel is available in the docked mode at the bottom of all default workspaces. If the Output panel is closed, you can open it by performing one of the following actions:

  • By clicking the linting status icon in the Document window status bar
  • Using the keyboard shortcut, Shift+F6
  • Using Window > Results > Output
Output panel and linting icon
The Output panel and the linting icon

The linting icon in the Status bar indicates the linting results:

  • Red - The current document has errors and warnings
  • Yellow - The current document has warnings only
  • Green - The current document has no errors

Opomba:

You can use the linting icon in the Status bar to also toggle the Output panel (open/close) if the icon is red or yellow (not green). 

The lines that contain the errors or warnings are highlighted in red and yellow respectively. You can double click a message in the Output panel to jump to the line where the error has occurred. In Code view, you can also hover your mouse over the line numbers of the erroneous lines to see a preview of the error or warning.

The Output panel lists 50 messages at a time with the errors listed before warnings. As and when you fix the errors, the list in the panel scrolls to display the next error.