# "no-inline-style" Rule Disallows in-line stylings. ## Notes - This rule does **not** dependent on abstract tree build; ## Configuration Following are the available configurations for this rule, with default values: ```js "no-inline-style": { allowWhenDynamic: true } ``` Check the [Generic Configurations for Rules][generic-config]. ## Examples ### Example 1 ```js "no-inline-style": {} ``` For the above configuration, the following scenarios may happen: ```